home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu291.dms / pu291.adf / Clocks / Makefile < prev    next >
Makefile  |  1992-08-03  |  732b  |  28 lines

  1.  
  2. # Precompiled header files
  3. PRECOMPILED = -hi/includes.pre
  4. DEBUGCFLAGS = -bs
  5. DEBUGLNFLAGS = -g -w
  6. CFLAGS = -su -ss -sf -wc -wp 
  7. #
  8. # These options mean:
  9. # -su pick register vars
  10. # -ss eliminate duplicate strings
  11. # -sf use faster for() code at expense of sdb
  12. # -wp warn me if there are any function calls without prototypes
  13. # -wc Don't warn me about (char *) to (unsigned char *) conversions
  14. # -hi use /includes.pre for precompiled includes.
  15. #
  16.  
  17. LHAFILES = README Makefile SPClock.c start.a68 nums2c.rexx nums \
  18.             SPClock SPClock.info
  19.  
  20. spclock: spclock.o start.o
  21.     ln +cd spclock.o start.o -m -lc
  22.  
  23. spclock.lha: $(LHAFILES)
  24.     lharc u spclock.lha $(LHAFILES)
  25.  
  26. spclock.lha.uu: spclock.lha
  27.     uuencode spclock.lha spclock.lha >spclock.lha.uu
  28.